home *** CD-ROM | disk | FTP | other *** search
Text File | 1986-08-13 | 647 b | 26 lines | [TEXT/ttxt] |
- *
- * Sound Demonstration Program
- * written for the Boston MacWorld Expo
- * using the Macintosh Programmer's Workshop
- *
- * © 1986 Fred A. Huxham
- *
- *------------------------------------------
- * This is some assembly language glue
- * to setup and restore register A5 around
- * the call to our Vertical Retrace Task
- *------------------------------------------
- *
- INCLUDE 'SysEqu.a'
-
- IMPORT mySoundVBL
-
- VBLGlue PROC EXPORT
- MOVEM.L A4-A5/D4-D7,-(SP) ;Save our Registers
- MOVE.L CurrentA5,A5 ;Restoring A5
- JSR mySoundVBL ;Jump to our VBL Task
- MOVEM.L (SP)+,A4-A5/D4-D7 ;Restore our Registers
- RTS ;and return
- ENDPROC
-
- END